home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / NiceStuff.subproj / KVPair.h < prev    next >
Encoding:
Text File  |  1996-01-30  |  514 b   |  30 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import <misckit/misckit.h>
  4. #import "MiscTableController.h"
  5.  
  6. @interface KVPair:Object <MiscTCRow>
  7.     {
  8.     MiscString    *key,*value;
  9.     }
  10.     
  11.  
  12. + (NXAtom)keyIdentifier;
  13. + (NXAtom)valueIdentifier;
  14.  
  15. - initKey:(const char *)aKey value:(const char *)aValue;
  16. - init:(const char *)kv delimiter:(char)del;
  17.  
  18. - setKey:(const char *)string;
  19. - takeKeyFrom:anObject;
  20. - (const char *)key;
  21.  
  22. - setValue:(const char *)value;
  23. - takeValueFrom:anObject;
  24. - (const char *)value;
  25.  
  26. - (BOOL)isNull;
  27. - (BOOL)hasValue;
  28.  
  29. @end
  30.